Clover coverage report - Flock Flock - 0.7-dev
Coverage timestamp: Thu Jan 30 2003 01:35:37 EST
file stats: LOC: 27   Methods: 0
NCLOC: 11   Classes: 1
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover.
 
 Source file Conditionals Statements Methods TOTAL
FeedI.java - - - -
 1   
 package net.sf.flock;
 2   
 
 3   
 import java.net.URL;
 4   
 import java.util.Date;
 5   
 import java.util.List;
 6   
 
 7   
 /**
 8   
  * @version $Revision$
 9   
  * @author $Author$
 10   
  */
 11   
 public interface FeedI extends FeedInfoI {
 12   
 
 13   
     public List getItems();
 14   
 
 15   
     public void setSite(URL url);
 16   
     
 17   
     public void setTitle(String title);
 18   
     
 19   
     public ItemI newItem(Date creationTime, String title, String description, URL link);
 20   
 
 21   
     /**   
 22   
      * @return List of new ItemI objects
 23   
      */
 24   
     public List merge(FeedI feed);
 25   
 
 26   
 }
 27